home *** CD-ROM | disk | FTP | other *** search
/ Cre@te Online 2000 December / Cre@teOnline CD05.iso / MacSoft / XML ConsoleMax.sea / XML ConsoleMax / Required / parser.jar / org / xml / sax / ErrorHandler.class (.txt) < prev    next >
Encoding:
Java Class File  |  2000-02-23  |  307 b   |  10 lines

  1. package org.xml.sax;
  2.  
  3. public interface ErrorHandler {
  4.    void error(SAXParseException var1) throws SAXException;
  5.  
  6.    void fatalError(SAXParseException var1) throws SAXException;
  7.  
  8.    void warning(SAXParseException var1) throws SAXException;
  9. }
  10.